home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / bytesc88.arc / FERROR.C < prev    next >
Text File  |  1987-10-04  |  256b  |  11 lines

  1. #define NOCCARGC  /* no arg count passing */
  2. #include stdio.h
  3. #include clib.def
  4. extern Ustatus[];
  5. /*
  6. ** Test for error status on fd.
  7. */
  8. ferror(fd) int fd; {
  9.   return (Ustatus[fd] & ERRBIT);
  10.   }
  11.